Embedding videos seamlessly in HTML?
How to design HTML Tables
137
06-Jun-2024
Updated on 06-Jun-2024
Ravi Vishwakarma
06-Jun-2024Designing HTML tables involves using the appropriate HTML elements to create the structure of the table and applying CSS to style it. Here’s a comprehensive guide on how to create and design HTML tables:
Basic Structure of an HTML Table
An HTML table is defined using the
<table>
tag. Inside the<table>
tag, you use<tr>
(table row) to create rows,<th>
(table header) for headers, and<td>
(table data) for data cells.Basic Table Example
Enhancing Table with CSS
To make tables more visually appealing, you can use CSS to style the table elements.
Styled Table Example
Advanced Table Styling with CSS
For more advanced styling, you can use CSS to add more sophisticated styles like fixed headers, alternating row colors, and responsive design.
Advanced Styled Table Example
Explanation of Advanced Styling
Table Design:
border-collapse: collapse;
: Collapses the borders of the table into a single border.margin: 20px 0;
: Adds space above and below the table.font-size: 1em;
: Sets a base font size.border-radius: 5px 5px 0 0;
: Rounds the top corners of the table.box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
: Adds a shadow around the table.Header Styling:
background-color: #009879;
: Sets a green background color for the header.color: #ffffff;
: Sets the text color to white.text-align: left;
: Aligns text to the left.Row Styling:
tbody tr:nth-of-type(even) { background-color: #f3f3f3; }
tbody tr:hover { background-color: #f1f1f1; cursor: pointer; }
Responsive Design:
@media (max-width: 600px)
) makes the table responsive by hiding the header and making each cell act as a block with labels.Designing HTML tables involves structuring the table with HTML and enhancing its appearance and functionality with CSS. By applying these styles, you can create tables that are not only visually appealing but also responsive and user-friendly.